const github.com/klauspost/compress/flate.baseMatchLength

12 uses

	github.com/klauspost/compress/flate (current package)
		fast_encoder.go#L42: 	baseMatchLength = 3              // The smallest match length per the RFC section 3.2.5
		level1.go#L181: 						if xl > 258+baseMatchLength {
		level1.go#L184: 							xl = 258 - baseMatchLength
		level1.go#L188: 					xl -= baseMatchLength
		level4.go#L156: 			if l < baseMatchLength {
		level5.go#L238: 			if l < baseMatchLength {
		level5.go#L550: 			if l < baseMatchLength {
		level6.go#L273: 			if l < baseMatchLength {
		token.go#L266: 		if xlength >= maxMatchLength+baseMatchLength {
		token.go#L296: 			if xl > 258+baseMatchLength {
		token.go#L299: 				xl = 258 - baseMatchLength
		token.go#L303: 		xl -= baseMatchLength